body{
    margin:0;
    width:100vw;
    height:auto;
}
svg{
    width: auto;
    height: auto;
}

#Layer_18{
    position: absolute!important;
    z-index: 999!important;
}

footer{
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
}


.animation{
    margin-top: 100vh;
    animation: moving 0.5s ease-in-out;
}

@keyframes moving {
    from{
        margin-top: 0;
    }
    to{
        margin-top: 100vh;
    }
}
